home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _38E65D84B6AF476AA1279D41F4388450 < prev    next >
Encoding:
Text File  |  2006-08-04  |  893 b   |  35 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for Tiles effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Tiles():
  14.     return {
  15.         'Elevation': 30,
  16.         'Intensity': 50,
  17.         'TileSize': 15,
  18.         'Color': (255, 255, 255),
  19.         'Shininess': 50,
  20.         'BorderSize': 1,
  21.         'TileAngularity': 75,
  22.         'GeneralSettings': {
  23.             'AutoActionMode': 0,
  24.             'ExecutionMode': 0
  25.             },
  26.         'Depth': 1,
  27.         'Ambience': 0,
  28.         'Angle': 315,
  29.         'TileShape': 2,
  30.         'Smoothness': 25
  31.         }
  32.  
  33. def Do(Environment):
  34.     App.Do( Environment, 'Tiles', Preset_Tiles())
  35.